home *** CD-ROM | disk | FTP | other *** search
/ Aminet 2 / Aminet AMIGA CDROM (1994)(Walnut Creek)[Feb 1994][W.O. 44790-1].iso / Aminet / dev / amos / AMOSList0993.lzh / AMOSLIST / 000021_amos-request@svcs1.digex.net_Sun Sep 5 19:58:13 1993.msg < prev    next >
Internet Message Format  |  1993-10-03  |  2KB

  1. Received: from nextsun.INS.CWRU.Edu by access.digex.net with SMTP id AA15018
  2.   (5.65c/IDA-1.4.4 for <mcox@access.digex.com>); Sun, 5 Sep 1993 19:58:12 -0400
  3. Received: from svcs1.digex.net by nextsun.INS.CWRU.Edu with SMTP (5.65b+ida+/CWRU-1.5.2-freenet-gw)
  4.     id AA13696; Sun, 5 Sep 93 18:05:01 -0400 (from amos-request@svcs1.digex.net for mcox@access.digex.com)
  5. Received: by svcs1.digex.net id AA11448
  6.   (5.65c/IDA-1.4.4 for amos-list-out); Sun, 5 Sep 1993 16:54:21 -0400
  7. Received: from access.digex.net by svcs1.digex.net with SMTP id AA11443
  8.   (5.65c/IDA-1.4.4 for <amos-list@svcs1.digex.net>); Sun, 5 Sep 1993 16:54:19 -0400
  9. Received: from vax.mbhs.edu by access.digex.net with SMTP id AA01356
  10.   (5.65c/IDA-1.4.4 for <amos-list@access.digex.net>); Sun, 5 Sep 1993 16:54:16 -0400
  11. Message-Id: <199309052054.AA01356@access.digex.net>
  12. Date: 5 Sep 93 16:40:00 EST
  13. From: "Andrew Church" <95ACHURCH@vax.mbhs.edu>
  14. Subject: Re: Extension Stuff.
  15. To: "amos-list" <amos-list@access.digex.net>
  16. Status: O
  17.  
  18. >Does anyone know if it is possible to get the extension sources to compile
  19. >with ASSEMPRO???  When I try I find that LABEL   set 1
  20. >                                                 ^^^   is an error and that
  21. >ENDC is also an undefined command etc.  What can I replace these with??
  22.  
  23.   I've also got ASSEMPRO and seen that problem with just about every assembler
  24. source ever distributed -- ASSEMPRO uses non-standard directives.
  25.  
  26.   Instead of:
  27.  
  28.   ifne CONSTANT
  29. LABEL set 1
  30.   endc
  31.  
  32. use:
  33.  
  34.   ifne CONSTANT
  35. LABEL@ = 1
  36.   endif
  37.  
  38. and make sure every other reference to LABEL becomes LABEL@.
  39.  
  40.   Alternatively, get a better assembler.  (I should do this too, but I'm
  41. too lazy :-) )
  42.  
  43.   --Andy Church
  44.